What is the difference between `.container` and `.container-fluid`?
Description : .container provides a fixed-width container while .container-fluid is full-width.
Answer :
The `.container`classprovides a fixed-width container that adjusts based on the screen size but maintains a maximum width.`.container-fluid` provides a full-width container that spans the entire width of the viewport.
Bootstrap's pagination component helps in navigating through multiple pages of content. It is implemented using the `pagination`class:Example:-<nav><ul class='pagination'><li class='page-item'><a class='page-link' href='#'>1</a></li></ul></nav>
Bootstrap's pagination component helps in navigating through multiple pages of content. It is implemented using the `pagination`class:Example:-<nav><ul class='pagination'><li class='page-item'><a class='page-link' href='#'>1</a></li></ul></nav>